home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
pdt_set1.zip
/
DEMO1.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-06-22
|
516b
|
32 lines
@Echo off
cls
:
: ---- See if required files are here.
:
If Not Exist Fields.Exe Goto FilesNotFound
If Not Exist Sample.DBF Goto FilesNotFound
Goto Start
:
:FilesNotFound
:
Echo I couldn't find one of the following files. I'm ending . . .
Echo
Echo Fields.Exe, Sample.DBF
Echo
Goto End
:
:Start
If Not Exist Sample.!!! Goto Run_Fields
:
Del Sample.!!!
:
: ---- Run FIELDS using Sample.DBF to quickly create Sample.!!!
:
:Run_Fields
:
Fields Sample.DBF
Echo
Echo
:
: